home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 357 b | 16 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- deferred class QUADRUPED
-
- inherit ANIMAL redefine fornicate_with end;
-
- feature {ANY}
-
- fornicate_with(other: ANIMAL): ANIMAL is
- do
- Result := other.reproduction_avec_quadrupede(Current);
- end;
-
- end -- QUADRUPED
-